/*Reset and body styling*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffe6ee;
    color: #4a4a4a;
    line-height: 1.6;
    padding: 20px;
}

/*Header & nav (matches homepage)*/
/* Header + Navigation */
header {
    background: #f9cde3;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5rem;
    color: #8a2e68;
    margin-bottom: 10px;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #4a154b;
    text-decoration: underline;
}

/*Get Involved container and cards*/
.get-involved-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    margin-top:40px;
}

.card {
    background: #fff0f6;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(138, 46, 104, 0.2);
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
}

.card h2 {
    color: #8a2e68;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.card p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #8a2e68;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #4a154b;
    text-decoration: underline;
}

/*Statistics Section*/
.stats-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stats-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-box {
    background: #fff0f6;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(138, 46, 104, 0.2);
    text-align: center;
    width: 150px;
}

.stat-box p {
    margin-top: 10px;
    font-weight: 600;
}

/*Counter styling*/
.counter {
    font-size: 2rem;
    color: #8a2e68;
    font-weight: 700;
}

/*Responsive*/
@media (max-width: 900px) {
    .get-involved-container, .stats-grid {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }
}